Uses of Class
edu.claflin.finder.algo.Algorithm
-
Packages that use Algorithm Package Description edu.claflin.finder Subgraph Finder - Used to find and locate subgraphs within a network.edu.claflin.finder.algo Contains the Algorithm code for finding bipartite subgraphs.edu.claflin.finder.algo.clustering -
-
Uses of Algorithm in edu.claflin.finder
Methods in edu.claflin.finder that return Algorithm Modifier and Type Method Description private static AlgorithmMain. parseAlgorithm(java.lang.String algorithmCode, java.util.HashMap<java.lang.String,java.lang.Boolean> config, java.util.ArrayList<Condition> conditions, java.util.Comparator<Edge> comparator)Parses an algorithm code string for returning the appropriate Algorithm object. -
Uses of Algorithm in edu.claflin.finder.algo
Subclasses of Algorithm in edu.claflin.finder.algo Modifier and Type Class Description classBreadthFirstTraversalSearchProcesses aGraphsearching for subgraphs by performing a breadth first search on each node of the graph.classBronKerboschFinds Maximum Cliques and Bicliques with Bron Kersboch Algorithm.classBundleProcesses aGraphsearching for subgraphs.classConnectedComponentsDFSProcesses aGraphsearching for connected components by performing a depth first search on each node.classDepthFirstTraversalSearchProcesses aGraphsearching for bipartite subgraphs by performing a depth first search on each node.classDijkstraShortestPathclassKruskalclassMatrixPatternAnalyzerDeprecated.No replacement yet.classPrimclassShortestPathFields in edu.claflin.finder.algo declared as Algorithm Modifier and Type Field Description private Algorithm[]Bundle. algorithmsTheAlgorithmarray containing the algorithms to process graphs with.Constructors in edu.claflin.finder.algo with parameters of type Algorithm Constructor Description Bundle(Algorithm[] algorithms)Constructs the Algorithm object. -
Uses of Algorithm in edu.claflin.finder.algo.clustering
Subclasses of Algorithm in edu.claflin.finder.algo.clustering Modifier and Type Class Description classClusteringAlgorithmclassFastGreedyFastGreedu Algorithm https://ece-research.unm.edu/ifis/papers/community-moore.pdfclassGirvanNewmanEdge Betweenness clustering with Girvan Newman Algorithm https://en.wikipedia.org/wiki/Girvan%E2%80%93Newman_algorithmclassWalktrapCommunity detection with the Walktrap Algorithm.
-